strconv.floatInfo.expbits (field)

12 uses

	strconv (current package)
		atof.go#L373: 	if exp-flt.bias >= 1<<flt.expbits-1 {
		atof.go#L385: 		if exp-flt.bias >= 1<<flt.expbits-1 {
		atof.go#L399: 	exp = 1<<flt.expbits - 1 + flt.bias
		atof.go#L405: 	bits |= uint64((exp-flt.bias)&(1<<flt.expbits-1)) << flt.mantbits
		atof.go#L407: 		bits |= 1 << flt.mantbits << flt.expbits
		atof.go#L500: 	maxExp := 1<<flt.expbits + flt.bias - 2
		atof.go#L554: 	bits |= uint64((exp-flt.bias)&(1<<flt.expbits-1)) << flt.mantbits
		atof.go#L556: 		bits |= 1 << flt.mantbits << flt.expbits
		ftoa.go#L18: 	expbits  uint
		ftoa.go#L71: 	neg := bits>>(flt.expbits+flt.mantbits) != 0
		ftoa.go#L72: 	exp := int(bits>>flt.mantbits) & (1<<flt.expbits - 1)
		ftoa.go#L76: 	case 1<<flt.expbits - 1: